home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / gcc / gcc261a.zoo / cat1 / cpp.1 next >
Encoding:
Text File  |  1994-11-03  |  19.7 KB  |  463 lines

  1.  
  2.  
  3.  
  4. cpp(1)                      GNU Tools                      cpp(1)
  5.  
  6.  
  7. N✓NA✓AM✓ME✓E
  8.        cccp, cpp - The GNU C-Compatible Compiler Preprocessor.
  9.  
  10. S✓SY✓YN✓NO✓OP✓PS✓SI✓IS✓S
  11.        c✓cc✓cc✓cp✓p   [-✓-$✓$] [-✓-A✓A_✓p_✓r_✓e_✓d_✓i_✓c_✓a_✓t_✓e[(✓(_✓v_✓a_✓l_✓u_✓e)✓)]] [-✓-C✓C]
  12.               [-✓-D✓D_✓n_✓a_✓m_✓e[=✓=_✓d_✓e_✓f_✓i_✓n_✓i_✓t_✓i_✓o_✓n]] [-✓-d✓dD✓D] [-✓-d✓dM✓M] [-✓-I✓I _✓d_✓i_✓r_✓e_✓c_✓t_✓o_✓r_✓y]
  13.               [-✓-H✓H] [-✓-I✓I-✓-] [-✓-i✓im✓ma✓ac✓cr✓ro✓os✓s _✓f_✓i_✓l_✓e] [-✓-i✓in✓nc✓cl✓lu✓ud✓de✓e _✓f_✓i_✓l_✓e]
  14.               [-✓-i✓id✓di✓ir✓ra✓af✓ft✓te✓er✓r _✓d_✓i_✓r] [-✓-i✓ip✓pr✓re✓ef✓fi✓ix✓x _✓p_✓r_✓e_✓f_✓i_✓x]
  15.               [-✓-i✓iw✓wi✓it✓th✓hp✓pr✓re✓ef✓fi✓ix✓x _✓d_✓i_✓r] [-✓-l✓la✓an✓ng✓g-✓-c✓c] [-✓-l✓la✓an✓ng✓g-✓-c✓c+✓++✓+]
  16.               [-✓-l✓la✓an✓ng✓g-✓-o✓ob✓bj✓jc✓c] [-✓-l✓la✓an✓ng✓g-✓-o✓ob✓bj✓jc✓c+✓++✓+] [-✓-l✓li✓in✓nt✓t] [-✓-M✓M [-✓-M✓MG✓G]]
  17.               [-✓-M✓MM✓M [-✓-M✓MG✓G]] [-✓-M✓MD✓D _✓f_✓i_✓l_✓e ] [-✓-M✓MM✓MD✓D _✓f_✓i_✓l_✓e ] [-✓-n✓no✓os✓st✓td✓di✓in✓nc✓c]
  18.               [-✓-n✓no✓os✓st✓td✓di✓in✓nc✓c+✓++✓+] [-✓-P✓P] [-✓-p✓pe✓ed✓da✓an✓nt✓ti✓ic✓c] [-✓-p✓pe✓ed✓da✓an✓nt✓ti✓ic✓c-✓-e✓er✓rr✓ro✓or✓rs✓s]
  19.               [-✓-t✓tr✓ra✓ad✓di✓it✓ti✓io✓on✓na✓al✓l] [-✓-t✓tr✓ri✓ig✓gr✓ra✓ap✓ph✓hs✓s] [-✓-U✓U_✓n_✓a_✓m_✓e] [-✓-u✓un✓nd✓de✓ef✓f]
  20.               [-✓-W✓Wt✓tr✓ri✓ig✓gr✓ra✓ap✓ph✓hs✓s] [-✓-W✓Wc✓co✓om✓mm✓me✓en✓nt✓t] [-✓-W✓Wa✓al✓ll✓l] [-✓-W✓Wt✓tr✓ra✓ad✓di✓it✓ti✓io✓on✓na✓al✓l]
  21.               [_✓i_✓n_✓f_✓i_✓l_✓e|-✓-] [_✓o_✓u_✓t_✓f_✓i_✓l_✓e|-✓-]
  22.  
  23. D✓DE✓ES✓SC✓CR✓RI✓IP✓PT✓TI✓IO✓ON✓N
  24.        The C preprocessor is a _✓m_✓a_✓c_✓r_✓o _✓p_✓r_✓o_✓c_✓e_✓s_✓s_✓o_✓r that is used auto-
  25.        matically  by the C compiler to transform your program be-
  26.        fore actual compilation.  It is called a  macro  processor
  27.        because  it  allows  you to define _✓m_✓a_✓c_✓r_✓o_✓s, which are brief
  28.        abbreviations for longer constructs.
  29.  
  30.        The C preprocessor provides four separate facilities  that
  31.        you can use as you see fit:
  32.  
  33.        +✓o      Inclusion of header files.  These are files of dec-
  34.               larations that can be substituted  into  your  pro-
  35.               gram.
  36.  
  37.        +✓o      Macro  expansion.  You can define _✓m_✓a_✓c_✓r_✓o_✓s, which are
  38.               abbreviations for arbitrary fragments  of  C  code,
  39.               and then the C preprocessor will replace the macros
  40.               with their definitions throughout the program.
  41.  
  42.        +✓o      Conditional compilation.  Using special  preproces-
  43.               sor  commands,  you can include or exclude parts of
  44.               the program according to various conditions.
  45.  
  46.        +✓o      Line control.  If you use a program to  combine  or
  47.               rearrange  source  files  into an intermediate file
  48.               which is then compiled, you can use line control to
  49.               inform the compiler of where each source line orig-
  50.               inally came from.
  51.  
  52.        C preprocessors vary in some details.  For a full explana-
  53.        tion  of  the  GNU  C  preprocessor,  see  the  i✓in✓nf✓fo✓o  file
  54.        `c✓cp✓pp✓p.✓.i✓in✓nf✓fo✓o', or the manual _✓T_✓h_✓e  _✓C  _✓P_✓r_✓e_✓p_✓r_✓o_✓c_✓e_✓s_✓s_✓o_✓r.   Both  of
  55.        these  are  built from the same documentation source file,
  56.        `c✓cp✓pp✓p.✓.t✓te✓ex✓xi✓in✓nf✓fo✓o'.  The GNU C preprocessor provides a superset
  57.        of the features of ANSI Standard C.
  58.  
  59.        ANSI  Standard  C  requires the rejection of many harmless
  60.        constructs commonly used by today's C programs.  Such  in-
  61.  
  62.  
  63.  
  64. GNU Tools                   30apr1993                           1
  65.  
  66.  
  67.  
  68.  
  69.  
  70. cpp(1)                      GNU Tools                      cpp(1)
  71.  
  72.  
  73.        compatibility  would be inconvenient for users, so the GNU
  74.        C preprocessor is configured to accept these constructs by
  75.        default.   Strictly  speaking, to get ANSI Standard C, you
  76.        must  use   the   options   `-✓-t✓tr✓ri✓ig✓gr✓ra✓ap✓ph✓hs✓s',   `-✓-u✓un✓nd✓de✓ef✓f'   and
  77.        `-✓-p✓pe✓ed✓da✓an✓nt✓ti✓ic✓c',  but  in  practice the consequences of having
  78.        strict ANSI Standard C make it undesirable to do this.
  79.  
  80.        Most often when you use the C preprocessor  you  will  not
  81.        have  to  invoke  it explicitly: the C compiler will do so
  82.        automatically.  However,  the  preprocessor  is  sometimes
  83.        useful individually.
  84.  
  85.        When  you  call the preprocessor individually, either name
  86.        (c✓cp✓pp✓p or c✓cc✓cc✓cp✓p) will do--they are completely synonymous.
  87.  
  88.        The C preprocessor expects two file  names  as  arguments,
  89.        _✓i_✓n_✓f_✓i_✓l_✓e and _✓o_✓u_✓t_✓f_✓i_✓l_✓e.  The preprocessor reads _✓i_✓n_✓f_✓i_✓l_✓e togeth-
  90.        er with any other files it specifies with `#✓#i✓in✓nc✓cl✓lu✓ud✓de✓e'.  All
  91.        the  output generated by the combined input files is writ-
  92.        ten in _✓o_✓u_✓t_✓f_✓i_✓l_✓e.
  93.  
  94.        Either _✓i_✓n_✓f_✓i_✓l_✓e or _✓o_✓u_✓t_✓f_✓i_✓l_✓e may be `-✓-', which as _✓i_✓n_✓f_✓i_✓l_✓e means
  95.        to  read from standard input and as _✓o_✓u_✓t_✓f_✓i_✓l_✓e means to write
  96.        to standard output.  Also, if _✓o_✓u_✓t_✓f_✓i_✓l_✓e or both  file  names
  97.        are  omitted,  the  standard output and standard input are
  98.        used for the omitted file names.
  99.  
  100. O✓OP✓PT✓TI✓IO✓ON✓NS✓S
  101.        Here is a table of command options accepted by the C  pre-
  102.        processor.  These options can also be given when compiling
  103.        a C program; they are passed along  automatically  to  the
  104.        preprocessor when it is invoked by the compiler.
  105.  
  106.        -✓-P✓P     Inhibit  generation  of  `#✓#'-lines with line-number
  107.               information in the output  from  the  preprocessor.
  108.               This  might be useful when running the preprocessor
  109.               on something that is not C code and will be sent to
  110.               a program which might be confused by the `#✓#'-lines.
  111.  
  112.        -✓-C✓C     Do not discard comments: pass them through  to  the
  113.               output  file.  Comments appearing in arguments of a
  114.               macro call will be copied to the output before  the
  115.               expansion of the macro call.
  116.  
  117.        -✓-t✓tr✓ra✓ad✓di✓it✓ti✓io✓on✓na✓al✓l
  118.               Try  to imitate the behavior of old-fashioned C, as
  119.               opposed to ANSI C.
  120.  
  121.        -✓-t✓tr✓ri✓ig✓gr✓ra✓ap✓ph✓hs✓s
  122.               Process ANSI standard  trigraph  sequences.   These
  123.               are  three-character  sequences,  all starting with
  124.               `?✓??✓?', that are defined by ANSI C to stand for  sin-
  125.               gle characters.  For example, `?✓??✓?/✓/' stands for `\✓\',
  126.               so `'✓'?✓??✓?/✓/n✓n'✓'' is a character constant for a  newline.
  127.  
  128.  
  129.  
  130. GNU Tools                   30apr1993                           2
  131.  
  132.  
  133.  
  134.  
  135.  
  136. cpp(1)                      GNU Tools                      cpp(1)
  137.  
  138.  
  139.               Strictly  speaking, the GNU C preprocessor does not
  140.               support all programs  in  ANSI  Standard  C  unless
  141.               `-✓-t✓tr✓ri✓ig✓gr✓ra✓ap✓ph✓hs✓s'  is  used,  but if you ever notice the
  142.               difference it will be with relief.
  143.  
  144.               You don't want to know any more about trigraphs.
  145.  
  146.        -✓-p✓pe✓ed✓da✓an✓nt✓ti✓ic✓c
  147.               Issue warnings required by the ANSI C  standard  in
  148.               certain  cases  such as when text other than a com-
  149.               ment follows `#✓#e✓el✓ls✓se✓e' or `#✓#e✓en✓nd✓di✓if✓f'.
  150.  
  151.        -✓-p✓pe✓ed✓da✓an✓nt✓ti✓ic✓c-✓-e✓er✓rr✓ro✓or✓rs✓s
  152.               Like `-✓-p✓pe✓ed✓da✓an✓nt✓ti✓ic✓c', except that errors  are  produced
  153.               rather than warnings.
  154.  
  155.        -✓-W✓Wt✓tr✓ri✓ig✓gr✓ra✓ap✓ph✓hs✓s
  156.               Warn  if  any  trigraphs  are encountered (assuming
  157.               they are enabled).
  158.  
  159.        -✓-W✓Wc✓co✓om✓mm✓me✓en✓nt✓t
  160.  
  161.        -✓-W✓Wc✓co✓om✓mm✓me✓en✓nt✓ts✓s
  162.               Warn whenever a comment-start sequence `/✓/*✓*' appears
  163.               in a comment.  (Both forms have the same effect).
  164.  
  165.        -✓-W✓Wa✓al✓ll✓l  Requests  both  `-✓-W✓Wt✓tr✓ri✓ig✓gr✓ra✓ap✓ph✓hs✓s'  and `-✓-W✓Wc✓co✓om✓mm✓me✓en✓nt✓t' (but
  166.               not `-✓-W✓Wt✓tr✓ra✓ad✓di✓it✓ti✓io✓on✓na✓al✓l').
  167.  
  168.        -✓-W✓Wt✓tr✓ra✓ad✓di✓it✓ti✓io✓on✓na✓al✓l
  169.               Warn about certain constructs that  behave  differ-
  170.               ently in traditional and ANSI C.
  171.  
  172.        -✓-I✓I _✓d_✓i_✓r_✓e_✓c_✓t_✓o_✓r_✓y
  173.                Add the directory _✓d_✓i_✓r_✓e_✓c_✓t_✓o_✓r_✓y to the end of the list
  174.               of directories to be  searched  for  header  files.
  175.               This  can be used to override a system header file,
  176.               substituting your own version, since these directo-
  177.               ries are searched before the system header file di-
  178.               rectories.  If you use more than one  `-✓-I✓I'  option,
  179.               the directories are scanned in left-to-right order;
  180.               the standard system directories come after.
  181.  
  182.        -✓-I✓I-✓-    Any directories specified with `-✓-I✓I' options  before
  183.               the  `-✓-I✓I-✓-' option are searched only for the case of
  184.               `#✓#i✓in✓nc✓cl✓lu✓ud✓de✓e _✓f_✓i_✓l_✓e"'; they are not searched  for  `#✓#i✓in✓n-✓-
  185.               c✓cl✓lu✓ud✓de✓e <✓<_✓f_✓i_✓l_✓e>'.
  186.  
  187.               If  additional  directories are specified with `-✓-I✓I'
  188.               options after  the  `-✓-I✓I-✓-',  these  directories  are
  189.               searched for all `#✓#i✓in✓nc✓cl✓lu✓ud✓de✓e' directives.
  190.  
  191.               In  addition,  the `-✓-I✓I-✓-' option inhibits the use of
  192.               the current directory as the first search directory
  193.  
  194.  
  195.  
  196. GNU Tools                   30apr1993                           3
  197.  
  198.  
  199.  
  200.  
  201.  
  202. cpp(1)                      GNU Tools                      cpp(1)
  203.  
  204.  
  205.               for  `#✓#i✓in✓nc✓cl✓lu✓ud✓de✓e  _✓f_✓i_✓l_✓e"'.  Therefore, the current di-
  206.               rectory is searched only if it is requested explic-
  207.               itly  with  `-✓-I✓I.✓.'.  Specifying both `-✓-I✓I-✓-' and `-✓-I✓I.✓.'
  208.               allows you to control precisely  which  directories
  209.               are  searched  before the current one and which are
  210.               searched after.
  211.  
  212.        -✓-n✓no✓os✓st✓td✓di✓in✓nc✓c
  213.               Do not search the standard system  directories  for
  214.               header files.  Only the directories you have speci-
  215.               fied with `-✓-I✓I' options (and the current  directory,
  216.               if appropriate) are searched.
  217.  
  218.        -✓-n✓no✓os✓st✓td✓di✓in✓nc✓c+✓++✓+
  219.               Do  not search for header files in the C++ specific
  220.               standard directories, but do still search the other
  221.               standard  directories.   (This  option is used when
  222.               building libg++.)
  223.  
  224.        -✓-D✓D _✓n_✓a_✓m_✓e
  225.                Predefine _✓n_✓a_✓m_✓e as a macro, with definition `1✓1'.
  226.  
  227.        -✓-D✓D _✓n_✓a_✓m_✓e=✓=_✓d_✓e_✓f_✓i_✓n_✓i_✓t_✓i_✓o_✓n
  228.                Predefine _✓n_✓a_✓m_✓e as a macro, with definition _✓d_✓e_✓f_✓i_✓n_✓i_✓-
  229.               _✓t_✓i_✓o_✓n.  There are no restrictions on the contents of
  230.               _✓d_✓e_✓f_✓i_✓n_✓i_✓t_✓i_✓o_✓n, but if you are invoking the  preproces-
  231.               sor from a shell or shell-like program you may need
  232.               to use the shell's quoting syntax to protect  char-
  233.               acters  such  as  spaces that have a meaning in the
  234.               shell syntax.  If you use more than  one  `-✓-D✓D'  for
  235.               the  same  _✓n_✓a_✓m_✓e, the rightmost definition takes ef-
  236.               fect.
  237.  
  238.        -✓-U✓U _✓n_✓a_✓m_✓e
  239.                Do not predefine _✓n_✓a_✓m_✓e.  If both `-✓-U✓U' and `-✓-D✓D'  are
  240.               specified for one name, the `-✓-U✓U' beats the `-✓-D✓D' and
  241.               the name is not predefined.
  242.  
  243.        -✓-u✓un✓nd✓de✓ef✓f Do not predefine any nonstandard macros.
  244.  
  245.        -✓-A✓A _✓n_✓a_✓m_✓e_✓(v✓va✓al✓lu✓ue✓e_✓)
  246.               Assert (in the same way as the #✓#a✓as✓ss✓se✓er✓rt✓t command) the
  247.               predicate  _✓n_✓a_✓m_✓e  with tokenlist _✓v_✓a_✓l_✓u_✓e.  Remember to
  248.               escape or quote the parentheses  on  shell  command
  249.               lines.
  250.  
  251.               You  can use `-✓-A✓A-✓-' to disable all predefined asser-
  252.               tions; it also undefines all predefined macros.
  253.  
  254.        -✓-d✓dM✓M    Instead of outputting the result of  preprocessing,
  255.               output  a  list  of  `#✓#d✓de✓ef✓fi✓in✓ne✓e' commands for all the
  256.               macros defined during the execution of the  prepro-
  257.               cessor,  including  predefined  macros.  This gives
  258.               you a way of finding out what is predefined in your
  259.  
  260.  
  261.  
  262. GNU Tools                   30apr1993                           4
  263.  
  264.  
  265.  
  266.  
  267.  
  268. cpp(1)                      GNU Tools                      cpp(1)
  269.  
  270.  
  271.               version  of  the preprocessor; assuming you have no
  272.               file `f✓fo✓oo✓o.✓.h✓h', the command
  273.  
  274.               touch foo.h; cpp -dM foo.h
  275.  
  276.               will show the values of any predefined macros.
  277.  
  278.        -✓-d✓dD✓D    Like `-✓-d✓dM✓M' except in two respects: it does _✓n_✓o_✓t  in-
  279.               clude  the  predefined  macros, and it outputs _✓b_✓o_✓t_✓h
  280.               the `#✓#d✓de✓ef✓fi✓in✓ne✓e' commands and the  result  of  prepro-
  281.               cessing.   Both  kinds of output go to the standard
  282.               output file.
  283.  
  284.  
  285.        -✓-M✓M [-✓-M✓MG✓G]
  286.               Instead of outputting the result of  preprocessing,
  287.               output  a rule suitable for m✓ma✓ak✓ke✓e describing the de-
  288.               pendencies of the main source file.  The preproces-
  289.               sor  outputs  one  m✓ma✓ak✓ke✓e  rule containing the object
  290.               file name for that source file, a  colon,  and  the
  291.               names of all the included files.  If there are many
  292.               included files then the rule is split into  several
  293.               lines using `\✓\'-newline.
  294.  
  295.               `-✓-M✓MG✓G'  says to treat missing header files as gener-
  296.               ated files and assume they live in the same  direc-
  297.               tory  as  the source file.  It must be specified in
  298.               addition to `-✓-M✓M'.
  299.  
  300.               This feature is used in automatic updating of make-
  301.               files.
  302.  
  303.        -✓-M✓MM✓M [-✓-M✓MG✓G]
  304.               Like  `-✓-M✓M' but mention only the files included with
  305.               `#✓#i✓in✓nc✓cl✓lu✓ud✓de✓e "_✓f_✓i_✓l_✓e"'.  System  header  files  included
  306.               with `#✓#i✓in✓nc✓cl✓lu✓ud✓de✓e <_✓f_✓i_✓l_✓e>' are omitted.
  307.  
  308.        -✓-M✓MD✓D _✓f_✓i_✓l_✓e
  309.               Like `-✓-M✓M' but the dependency information is written
  310.               to `_✓f_✓i_✓l_✓e'.  This is in addition  to  compiling  the
  311.               file  as specified--`-✓-M✓MD✓D' does not inhibit ordinary
  312.               compilation the way `-✓-M✓M' does.
  313.  
  314.               When invoking gcc, do not specify the `_✓f_✓i_✓l_✓e'  argu-
  315.               ment.  Gcc will create file names made by replacing
  316.               `.✓.c✓c' with `.✓.d✓d' at the end of the input file  names.
  317.  
  318.               In Mach, you can use the utility m✓md✓d to merge multi-
  319.               ple files into a single  dependency  file  suitable
  320.               for using with the `m✓ma✓ak✓ke✓e' command.
  321.  
  322.        -✓-M✓MM✓MD✓D _✓f_✓i_✓l_✓e
  323.               Like  `-✓-M✓MD✓D'  except mention only user header files,
  324.               not system header files.
  325.  
  326.  
  327.  
  328. GNU Tools                   30apr1993                           5
  329.  
  330.  
  331.  
  332.  
  333.  
  334. cpp(1)                      GNU Tools                      cpp(1)
  335.  
  336.  
  337.        -✓-H✓H     Print the name of each header file used,  in  addi-
  338.               tion to other normal activities.
  339.  
  340.        -✓-i✓im✓ma✓ac✓cr✓ro✓os✓s _✓f_✓i_✓l_✓e
  341.                 Process  _✓f_✓i_✓l_✓e  as input, discarding the resulting
  342.               output, before processing the regular  input  file.
  343.               Because  the output generated from _✓f_✓i_✓l_✓e is discard-
  344.               ed, the only effect of `-✓-i✓im✓ma✓ac✓cr✓ro✓os✓s _✓f_✓i_✓l_✓e' is  to  make
  345.               the macros defined in _✓f_✓i_✓l_✓e available for use in the
  346.               main input.  The preprocessor  evaluates  any  `-✓-D✓D'
  347.               and  `-✓-U✓U'  options  on the command line before pro-
  348.               cessing `-✓-i✓im✓ma✓ac✓cr✓ro✓os✓s _✓f_✓i_✓l_✓e' .
  349.  
  350.        -✓-i✓in✓nc✓cl✓lu✓ud✓de✓e _✓f_✓i_✓l_✓e
  351.               Process _✓f_✓i_✓l_✓e as input, and include all the  result-
  352.               ing  output,  before  processing  the regular input
  353.               file.
  354.  
  355.        -✓-i✓id✓di✓ir✓ra✓af✓ft✓te✓er✓r _✓d_✓i_✓r
  356.                Add the directory _✓d_✓i_✓r to the second include  path.
  357.               The  directories  on  the  second  include path are
  358.               searched when a header file is not found in any  of
  359.               the  directories  in the main include path (the one
  360.               that `-✓-I✓I' adds to).
  361.  
  362.        -✓-i✓ip✓pr✓re✓ef✓fi✓ix✓x _✓p_✓r_✓e_✓f_✓i_✓x
  363.                 Specify  _✓p_✓r_✓e_✓f_✓i_✓x  as  the  prefix  for  subsequent
  364.               `-✓-i✓iw✓wi✓it✓th✓hp✓pr✓re✓ef✓fi✓ix✓x' options.
  365.  
  366.        -✓-i✓iw✓wi✓it✓th✓hp✓pr✓re✓ef✓fi✓ix✓x _✓d_✓i_✓r
  367.                 Add  a directory to the second include path.  The
  368.               directory's name is made  by  concatenating  _✓p_✓r_✓e_✓f_✓i_✓x
  369.               and _✓d_✓i_✓r, where _✓p_✓r_✓e_✓f_✓i_✓x was specified previously with
  370.               `-✓-i✓ip✓pr✓re✓ef✓fi✓ix✓x'.
  371.  
  372.        -✓-l✓la✓an✓ng✓g-✓-c✓c
  373.  
  374.        -✓-l✓la✓an✓ng✓g-✓-c✓c+✓++✓+
  375.  
  376.        -✓-l✓la✓an✓ng✓g-✓-o✓ob✓bj✓jc✓c
  377.  
  378.        -✓-l✓la✓an✓ng✓g-✓-o✓ob✓bj✓jc✓c+✓++✓+
  379.               Specify the source language.  `-✓-l✓la✓an✓ng✓g-✓-c✓c+✓++✓+' makes the
  380.               preprocessor  handle  C++  comment  syntax, and in-
  381.               cludes extra default include directories  for  C++,
  382.               and  `-✓-l✓la✓an✓ng✓g-✓-o✓ob✓bj✓jc✓c' enables the Objective C `#✓#i✓im✓mp✓po✓or✓rt✓t'
  383.               directive.  `-✓-l✓la✓an✓ng✓g-✓-c✓c' explicitly turns off both  of
  384.               these  extensions, and `-✓-l✓la✓an✓ng✓g-✓-o✓ob✓bj✓jc✓c+✓++✓+' enables both.
  385.  
  386.               These options are generated by the compiler  driver
  387.               g✓gc✓cc✓c, but not passed from the `g✓gc✓cc✓c' command line.
  388.  
  389.        -✓-l✓li✓in✓nt✓t  Look  for  commands to the program checker l✓li✓in✓nt✓t em-
  390.               bedded in  comments,  and  emit  them  preceded  by
  391.  
  392.  
  393.  
  394. GNU Tools                   30apr1993                           6
  395.  
  396.  
  397.  
  398.  
  399.  
  400. cpp(1)                      GNU Tools                      cpp(1)
  401.  
  402.  
  403.               `#✓#p✓pr✓ra✓ag✓gm✓ma✓a  l✓li✓in✓nt✓t'.   For  example,  the  comment  `/✓/*✓*
  404.               N✓NO✓OT✓TR✓RE✓EA✓AC✓CH✓HE✓ED✓D *✓*/✓/' becomes `#✓#p✓pr✓ra✓ag✓gm✓ma✓a l✓li✓in✓nt✓t NOTREACHED'.
  405.  
  406.               This option is available only when you call c✓cp✓pp✓p di-
  407.               rectly; g✓gc✓cc✓c will not pass it from its command line.
  408.  
  409.        -✓-$✓$     Forbid the use of `$✓$' in identifiers.  This is  re-
  410.               quired  for  ANSI  conformance.   g✓gc✓cc✓c automatically
  411.               supplies this option to  the  preprocessor  if  you
  412.               specify `-✓-a✓an✓ns✓si✓i', but g✓gc✓cc✓c doesn't recognize the `-✓-$✓$'
  413.               option itself--to use it without the other  effects
  414.               of  `-✓-a✓an✓ns✓si✓i', you must call the preprocessor direct-
  415.               ly.
  416.  
  417. S✓SE✓EE✓E A✓AL✓LS✓SO✓O
  418.        `C✓Cp✓pp✓p' entry in i✓in✓nf✓fo✓o; _✓T_✓h_✓e _✓C _✓P_✓r_✓e_✓p_✓r_✓o_✓c_✓e_✓s_✓s_✓o_✓r, Richard M. Stall-
  419.        man.
  420.        g✓gc✓cc✓c(1✓1); `G✓Gc✓cc✓c' entry in i✓in✓nf✓fo✓o; _✓U_✓s_✓i_✓n_✓g _✓a_✓n_✓d _✓P_✓o_✓r_✓t_✓i_✓n_✓g _✓G_✓N_✓U _✓C_✓C _✓(_✓f_✓o_✓r
  421.        _✓v_✓e_✓r_✓s_✓i_✓o_✓n _✓2_✓._✓0_✓), Richard M. Stallman.
  422.  
  423. C✓CO✓OP✓PY✓YI✓IN✓NG✓G
  424.        Copyright (c) 1991, 1992, 1993 Free  Software  Foundation,
  425.        Inc.
  426.  
  427.        Permission  is  granted  to  make  and distribute verbatim
  428.        copies of this manual provided the  copyright  notice  and
  429.        this permission notice are preserved on all copies.
  430.  
  431.        Permission is granted to copy and distribute modified ver-
  432.        sions of this manual under  the  conditions  for  verbatim
  433.        copying,  provided  that the entire resulting derived work
  434.        is distributed under the  terms  of  a  permission  notice
  435.        identical to this one.
  436.  
  437.        Permission  is granted to copy and distribute translations
  438.        of this manual into another language, under the above con-
  439.        ditions for modified versions, except that this permission
  440.        notice may be included in  translations  approved  by  the
  441.        Free  Software  Foundation  instead of in the original En-
  442.        glish.
  443.  
  444.  
  445.  
  446.  
  447.  
  448.  
  449.  
  450.  
  451.  
  452.  
  453.  
  454.  
  455.  
  456.  
  457.  
  458.  
  459.  
  460. GNU Tools                   30apr1993                           7
  461.  
  462.  
  463.